home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / QRLABELS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-05  |  488 b   |  30 lines

  1. { QuickReport mailing labels form }
  2.  
  3. unit qrlabels;
  4.  
  5. interface
  6.  
  7. uses
  8.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  9.   Qrctrls, quickrpt, DB, DBTables, ExtCtrls;
  10.  
  11. type
  12.   TQRLabelsForm = class(TQuickRep)
  13.     MasterTable: TTable;
  14.     DetailBand1: TQRBand;
  15.     QRLabel2: TQRLabel;
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   QRLabelsForm: TQRLabelsForm;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. end.
  30.